“Travel Agency Script” Documentation by “LikeGeo” v1.1


“Travel Agency Script”

Created: 23/08/2013
By: LikeGeo
Last Update: 12/09/2013
Current version: 1.1
Email: contact@zonecoders.com

Thank you for purchasing Travel Agency Script. If you have any questions that are beyond the scope of this help file, please feel free to visit my website ZoneCoders.com or email me via my user page contact form here or you on my website Forum ZoneCoders.com. Thanks so much!


Table of Contents

  1. Requirements
  2. INSTALLATION
  3. HTML Structure
  4. CSS Files and Structure

 

Requirements - top


Updates for version 1.1 - top

Front site

  • Agent Registration System
  • Levels Packages
  • Hotels system added
  • Tours System added
  • Search form based on calendar
  • Fixed problems for search system
  • Featured package added
  • Agents can list his package on featured area based on agent level
  • Paypal payment procesor added
  • Moneybookers payment procesor added
  • Fixed and added more SEO links
  • Other bugs fixed
  • Agent Dashboard (new!)

  • Agent can add / manage packages
  • Agent can view his orders
  • Agent can add / manage destinations
  • Agent can see his package reviews, can edit/approve/delete any time an review
  • Agent can send newsletters if his active level allow this
  • Agent can add custom pages
  • Agent can access the modules section if his level allow this
  • Agent can edit his profile
  • Agent can add Hotels based on level limits
  • Agent can add tours based on level limits
  • Invoices system
  • Agent can list ads on his packages
  • And much, much more!
  • Administration

  • Levels system added
  • Multi level options
  • - Max. Package

    - Can add ads

    - Maxim hotels

    - Maxim tours

    - Listed on featured

    - Can send newsletter

    - Can add Pages

  • Billing system added, (multi period based)
  • Invoices system added
  • Admin can add / manage agents
  • Admin can add / extend agent levels
  • Admin can add hotels
  • Admin can add tours
  • Admin can see agent orders
  • Admin can see,manage,delete agent packages reviews
  • And much more, please check demo...

  • A) INSTALLATION - top

    -Unzip all files from travel-agency-v1.1 arhive

    -Use an FTP client (filezilla) to upload all files on your public_html(root) folder, be sure that you upload the files on AUTO transfer mode.

    -Be sure that .htaccess whose uploaded and if that file is from Travel Agency Script. Some servers auto generate .htaccess file, so please check if is the corect file.

    ***Instalation***

    Step 1: Go to ./includes/inc.config.php using your ftp program, then right click and click on edit file. You have to replace all xxxxxx with your database connection details. Also you can set the number of package listed on homepage or per page by editing the last 3 line from inc.config.php file. Save and close the file.

    		
    define("ROOT_URL", "http://yoursitename.com"); //Define the full url to root directory
    define("DB_SERVER", "localhost"); //Define your server name, usually localhost
    define("DB_NAME","xxxxxxx"); //Define your Database Name
    define ("DB_USER", "xxxxxxx"); //Define Database user
    define ("DB_PASSWORD", "xxxxxxx"); //Define your database password 
    $db = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD);
    if (!$db)
    {
    die("Failed to connect to database server!
    ".mysql_error()); } mysql_select_db(DB_NAME, $db) or die("Failed to select database
    ".mysql_error()); // Site configuration // $review_limit = 10; // Number of reviews per page $pack_limit = 10; // Number of package per page $homepage_pack_limit = 8; // Number of package listed on homepage

    Step 2: CHMOD 777 admin/files/uploads

    Step 3: CHMOD 777 admin/files/hotels

    Step 4: CHMOD 777 admin/files/tours

    Step 5: CHMOD 777 images/

    Step 6: Go to your phpmyadmin via cPanel and open your database, then inport the sql file from database-sql/database.sql.

    Step 7: Type on your browser http://yourdomain.com/admin and login as Administrator using admin as username and admin as password.

    Done! Now you can use your websie, wose easy right?

    PS: Do not forgot to change the admin password after login from General Settings.


    C) HTML Structure - top

    The HTML structure of this script is composed of three elements: Header, Content and Footer. To edit or modify the contents of the header, you need to open ./includes/header.php. To edit or modify the content of the footer you need to edit the ./includes/footer.php.

    To change the top Menu you need to open ./includes/header.php and edit what you need.




    LOGO

    To change the Logo, just go to administration panel -> General settings -> website log. Upload a new logo and then update settings.

    Custom Pages

    To add a new page, go to administration area and click on custom page -> Add new page. You can chose if the page is only for logged in users or for all website visitors.

    Once the page is added, go to page manager and find your new page, on the top you will find a link for your page, copy and create a link in your website to point that page.



    Other customization

    If you would like to edit the color, font, or style of any elements in one of these columns, you need to edit ./css/style.css

    If you find that your new style is not overriding, it is most likely because of a specificity problem. Scroll down in your CSS file and make sure that there isn't a similar style that has more weight.

    So, to ensure that your new styles are applied, make sure that they carry enough "weight" and that there isn't a style lower in the CSS file that is being applied after yours.


    D) CSS Files and Structure - top

    The main CSS file is ./css/style.css. This file contain all website styles and structure.

    If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.

    To integrate my script in your one design you need to edit the HTML parts also. If this is hard coding for you, please visit our website ZoneCoders and contact us for customization services. We will be happy to create a unic proffesional design for you.


    Once again, thank you so much for purchasing Travel Agency Script. As I said at the beginning, I'd be glad to help you if you have any questions relating to this script. No guarantees, but I'll do my best to assist. If you have a more general question relating to this script please visit my website ZoneCoders.com and ask for help on our forum or just open an support ticket regarding your issue, or email me at: contact@zonecoders.com.

    P.S: Sory for my bad English :)

    LikeGeo

    Go To Table of Contents